home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_08_02 / 8n02049b < prev    next >
Text File  |  1990-02-28  |  325b  |  15 lines

  1.  
  2.  
  3. *****Listing 4*****
  4.  
  5. 001  /* interface to utility module */
  6. 002  
  7. 003  extern int g_white;
  8. 004  extern int g_black;
  9. 005  
  10. 006  void fatal(char *s);
  11. 007  void g_init(void);
  12. 008  void cleanup(void);
  13. 009  void g_circle(int y, int x, int radius, int color);
  14. 010  void g_square(int y, int x, int size, int color);
  15.